106f751ec28a52a3907ff357e3838c1f6dd0ca67,co.codewizards.cloudstore.core/src/main/java/co/codewizards/cloudstore/core/config/ConfigImpl.java,ConfigImpl,createPropertiesFiles,#File#boolean#,208
Before Change
if (isDirectory) {
return new File[] {
createFile(file, PROPERTIES_FILE_NAME_FOR_DIRECTORY_HIDDEN),
createFile(file, PROPERTIES_FILE_NAME_FOR_DIRECTORY_VISIBLE),
createFile(file, PROPERTIES_FILE_NAME_FOR_DIRECTORY_LOCAL) // overrides the settings of the shared file!
};
}
After Change
files.add(createFile(metaDir, PROPERTIES_FILE_NAME_PARENT));
files.add(createFile(file, PROPERTIES_FILE_NAME_FOR_DIRECTORY));
files.add(createFile(file, PROPERTIES_FILE_NAME_FOR_DIRECTORY_VISIBLE));
files.add(createFile(file, PROPERTIES_FILE_NAME_FOR_DIRECTORY_LOCAL)); // overrides the settings of the shared file!
return files.toArray(new File[files.size()]);
}